安装Raspberry Pi OS
注:本篇章演示安装与配置树莓派原生操作系统,然后在上面安装HomeAssistant Core
,或者安装HomeAssistant Supervisor
(hassio
)的操作过程。
对于一般的HomeAssistant用户,建议直接安装HomeAssistant Operation System
(HassOS
)。
选择树莓派的三大理由
- 使用人多——各种软件会对它兼容适配
- 省电——适合7*24小时开机
- 性价比高——几百元,足够完成日常的各种学习与自动控制需求
硬件准备
-
树莓派3B、3B+、4B
-
一张16G以上tf卡、一个USB口tf卡读写卡器
-
一台Windows或MacOS工作电脑
操作步骤
- 下载树莓派镜像( https://www.raspberrypi.org/software/operating-systems/ ),解压缩
- 下载安装etcher( https://etcher.io/ )
- 使用etcher将镜像写入tf卡
-
配置打开
sshd
,配置树莓派的wifiwpa_supplicant.conf
文件country=CN ctrl_interface=DIR=/var/run/wpa_supplicant GROUP=netdev update_config=1 network={ ssid="your_wifi_ssid" psk="your_wifi_password" key_mgmt=WPA-PSK priority=1 }
-
启动树莓派,确认树莓派的IP地址
-
通过ssh登录树莓派
MacOS和linux上连接命令:
ssh 树莓派IP地址
Windows上使用
putty
软件连接
参考
-
putty下载地址
https://www.chiark.greenend.org.uk/~sgtatham/putty/latest.html